I am using IntelliJ for Codename One development. I am trying to add a new locale, so the steps I do are the following:
1. Double click the theme.res
2. Click on Localization -> Add Resource Bundle
3. Add a new locale, say "de"
4. Double click on some row, or click "Edit text". Now I expect to be able to write in a value for the new locale, but nothing happens.
My expectations are based on this video and on the developer guide. Am I missing something or this is a bug in the IntelliJ plugin?
There seems to be a regression with the first 5 default entries. If you add a new entry into the designer tool it should work.
The problem is that the new entries are null instead of blank strings and one of our recent fixes failed to account to that. If you set them to a non-null value thru the XML and then try to edit again this should work as expected in the GUI.
We'll fix this in the next plugin update within 3-4 weeks (sometime during September 2016). Since the designer is part of the tooling and not the API it isn't updated every week. The fix is already in git.
Related
After updating my VS 2022 last week to version 17.4.0 the add quick file is not working anymore.
I used to use Mads Kristensen extension but now, with this new version, the extension was replaced by a built-in feature and when I type shift+f2 the Add New Item dialog shows up, I type something like Test.cs or ITest.cs and just an empty file is created.
I've already tried uninstalling the extension but it didn't work either.
Does anybody with the same problem?
The problem continues but for those that use Mads Kristensen Add New File extension, there is a way around it.
Go to Tools -> Options -> Environment -> Keyboard and remove the shortcut for AddQuickFile.
After that find NewEmptyFile (the full name is ProjectandSolutionContextMenus.Project.Add.NewEmptyFile) and assign the SHIFT+F2 shortcut to it.
At least while the VS2022 doesn't work well, we can continue to use the extension.
I use the search in JIRA about 50 times a day and every time it forgets what I just entered. Is there any way to tell it to remember the last search or the project code. (By project code I mean the first few letters of bug code such as "AAQT-").
That prefix is known as the project key.
(Also, what version of JIRA are you using? There are some UI differences between Cloud and most Server instances so my following advice might not make sense.)
There isn't a way to pre-define the project key in the quick search box since most JIRA instances have multiple projects, and pre-defining it for just one project doesn't make sense.
However, your browser should be able to remember previous values entered. You would have to overwrite the numerical portion that follows the key, though.
Do you mean save your search as your favourite filter? If so then you can follow these steps :
Click on "Issues" dropdown then choose "Search for issues"
Click on "New filter" button on the top-left area
Type your query
Click on "Save as" button on the above of query field
Give any search name, then it will be save under "Favourite Filters" section
I have no idea what changed, but either using Ctrl+. or right clicking to bring up the quick actions in VS2015 RC (14.0.22823.1) on a token that I haven't added the right using statement used to give me an option to automatically add it for me, along with options to create a new class and a few other things.
The last couple days it's no longer giving me the option to add the using statement for me (I use this shortcut all the time). It still has all the other options.
Anyone else run into this? I recently installed Web Essentials 2015.0 RC and Code Maid (code maid was causing problems so I removed it). Could one of those affect it?
I just had the same problem and solved it by renaming the .suo file in ProjectName\.vs\ProjectName\v14 to something VS will not find, like .suo.bak.
This will reset your project specific preferences, like open files, solution explorer state etc. Make a backup of the file or rename it so you can go back if you are missing something important.
If everything works afterwards you can simply delete the renamed file, VS will create a new one.
I Have Developed many project in vb.net 2010 and in all the project i have used my Settings and all worked properly. But now in my new project There are 20 Setting in my Settings.... and every time i start my software it Automatically get reset to original value..... all 20 of them...... I can't find any problem in coding part i also tryed testing by creating semple setting and one button which will change that setting value. but when i re start software it's bach to original value ......
Plz give your suggestions for the same......
I'm trying to setup a build with TFS 2010. I want the build number format to be something like $(BuildDefinitionName)_$(version) where $(Version) is the version (label or changeset) specified in the "Get Version" field in the "Queue Build" dialog. If there's no specific version, I would like the version to be latest.
I googled for that but I'm new to msbuild and TFS build so I'm not sure what I should look for to get started.
Thanks.
The Microsoft.TeamFoundation.Build.Workflow.Activities.UpdateBuildNumber activity in your build template (e.g. DefaultTemplate.xaml) is what does the work of transforming your build number format string. It takes any of the parameters listed here, however, the version (your changeset or label) is not one of the supported tags.
One workaround I've found that does not require custom code is to edit the BuildNumberFormat argument immediately before the Update Build Number activity uses it.
Open up the xaml template using the GUI editor and find the Update Build Number activity at the top.
Find the Primitives -> Assign activity in the Toolbox. Drag and drop that just above the Update Build Number.
Edit the Assign activity to assign the value String.Format("$(BuildDefinitionName)_$(Date:yyyyMMdd)_{0}$(Rev:.r)", BuildDetail.SourceGetVersion) to BuildNumberFormat. The SourceGetVersion will pull the changeset number or label used to trigger the build. If nothing is specified in the Get Version dialog when you're queuing your build then the changeset number is used by default (e.g. C16044).
this is a good start
http://www.ewaldhofman.nl/post/2010/06/01/Customize-Team-Build-2010-e28093-Part-10-Include-Version-Number-in-the-Build-Number.aspx